home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr22 / gnplt.zip / STEPS.DEM < prev    next >
Text File  |  1993-05-11  |  763b  |  22 lines

  1. #This file will serve as the datafile used in demonstrating the 
  2. #"plot with steps" option.   Here is a gnuplot input file
  3. #which uses "plot with steps", inverse error function, normal
  4. #distribution function, and the inverse normal distribution
  5. #function.
  6. set title "Demo of step ploting style"
  7. plot [0:12][0:13] "steps.dat" with steps, "steps.dat" with points
  8.  
  9. pause -1 "Hit return for normal distribution function."
  10. set title "Normal Distribution Function"
  11. plot [-3:3][0:1] norm(x)
  12.  
  13. pause -1 "Hit return for inverse error function."
  14. set title "Inverse Error Function"
  15. plot [-1:1] inverf(x)
  16.  
  17. pause -1 "Hit return for inverse normal distribution function."
  18. set title "Inverse Normal Distribution Function"
  19. plot [0:1] invnorm(x)
  20.  
  21. set title ""
  22.